home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / windows / wlit21.zip / UPDATE.BAT < prev    next >
DOS Batch File  |  1992-08-11  |  412b  |  19 lines

  1. @echo off
  2.  
  3. echo Are you sure you want to update mywin31.zip to drive b: ?
  4. pause
  5. if not exist b:\mywin31.zip goto doit
  6. echo Existing mywin31.zip would be deleted!!!
  7. echo Delete manually if you're sure and then try again.
  8. goto exit
  9. pause
  10. :doit
  11. b:\pkzip -rp b:\mywin31.zip c:\winlite\*.*
  12. if errorlevel 1 goto abort
  13. echo Update succeeded.
  14. goto exit
  15. :abort
  16. echo Update aborted -- zip failed.
  17. :exit
  18.  
  19.